home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / PROGRAM / CUJ9207.ARJ / 1007055A < prev    next >
Text File  |  1992-06-03  |  266b  |  14 lines

  1. istream &operator>>(istream &is, rational &r)
  2.     {
  3.     char lp, slash, rp;
  4.     long n, d;
  5.     is >> lp >> n >> slash >> d >> rp;
  6.     if (is && lp == '(' && slash == '/' && rp == ')')
  7.         r = rational(n, d);
  8.     else if (is.good())
  9.         // indicate a failure
  10.     return is;
  11.     }
  12.  
  13.  
  14.